home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / cprog / c_tutor.lha / C_Tutor / FORMOUT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-05-28  |  329 b   |  16 lines

  1. #include "stdio.h"
  2. main()
  3. {
  4. FILE *fp;
  5. char stuff[25];
  6. int index;
  7.  
  8.    fp = fopen("TENLINES.TXT","w");   /* open for writing */
  9.    strcpy(stuff,"This is an example line.");
  10.  
  11.    for (index = 1;index <= 10;index++)
  12.       fprintf(fp,"%s  Line number %d\n",stuff,index);
  13.  
  14.    fclose(fp);    /* close the file before ending program */
  15. }
  16.